home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / SYMBOL / Symbol Processors / Fill / fill-template < prev    next >
Text File  |  1998-10-23  |  469b  |  14 lines

  1. fill-template symbol-pattern fill-symbols
  2.  
  3. Fills the symbols in symbol-pattern with the symbols that it takes from fill-symbols. The rests in symbol-pattern are not filled, but the rests in fill-symbols are used as fill symbols. 
  4.  
  5. (fill-template '(a b (a b c) d e = g) 'a)
  6. --> (a a a a a = a)
  7.  
  8. (fill-template '(a b (a b c) d e = g) '(a = b))
  9. --> (a = b a = = b)
  10.  
  11. (fill-template  '(a (+ 1 b c) d e = g)
  12.         '((-1 a b) b = (-2 a b)))
  13. --> ((-1 a b) b = (-2 a b) = (-1 a b))
  14.